home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 51 / Amiga Format CD51 (2000-03-10)(Future Publishing)(GB)[!][issue 2000-04].iso / -readerstuff- / andrew_dixon / wbreboot / install < prev    next >
Text File  |  2000-01-27  |  1KB  |  47 lines

  1. ; $VER: WBReboot Version 1.0 Install 
  2. ; (c) 2000 Andrew Dixon
  3.  
  4. ;Procedure to copy newicons
  5.  
  6. (procedure copynicons
  7.     (copyfiles
  8.         (source "icons/WBReboot_NI.info")
  9.         (newname "WBReboot.info")
  10.         (dest "SYS:WBStartup")
  11.     )
  12. )
  13.  
  14. (procedure copyicons
  15.     (copyfiles
  16.         (source "icons/WBReboot_4col.info")
  17.         (newname "WBReboot.info")
  18.         (dest "SYS:WBStartup")
  19.     )
  20. )
  21.  
  22. ;Introduction message
  23.  
  24. (message "Welcome to the WBReboot 1.0 Installation Utility\n (c) 1999 Andrew Dixon. ")
  25.  
  26. (copyfiles
  27.         (source "WBReboot1.0")
  28.         (newname "WBReboot")
  29.         (dest "SYS:WBStartup")
  30. )
  31.  
  32. (if
  33.     (= 0
  34.         (askchoice
  35.             (prompt "Please choose your icon set")
  36.             (choices "32 Colour Newicons" "4 Colour Standard Icons")
  37.             (help "The installer is asking which icon set you would like installed. For the 256 colour icons you must be running NewIcons, otherwise choose the 4 colour icons.")
  38.             (default 0)
  39.         )
  40.     )
  41.    (copynicons)
  42.    (copyicons)
  43. )
  44.  
  45.  
  46. (message "Installation is complete!")
  47.